home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 July / Chip_2003-07_cd1.bin / oddech / srp / Stress Relief Paintball.exe / scripts / DefineButton2_253 / BUTTONCONDACTION on(release).as
Text File  |  2002-07-26  |  256b  |  12 lines

  1. on(release){
  2.    if(_root.blnFire == true)
  3.    {
  4.       _parent.scoreanim.play();
  5.       gotoAndStop(random(3) + 2);
  6.       _root.shots--;
  7.       _root.sndShot.play();
  8.       _root.sndHit.play();
  9.       _root.actualshots = _root.actualshots + 1;
  10.    }
  11. }
  12.